home *** CD-ROM | disk | FTP | other *** search
/ Nebula 1 / Nebula One.iso / Financial / USDebtWatch / unix-version / Makefile < prev    next >
Makefile  |  1995-06-12  |  161b  |  9 lines

  1. # Makefile for command-line version of USDebtWatcher
  2.  
  3. OBJECTS=usdebt.o xdebt-xcerpt.o tm_to_time.o
  4.  
  5. CFLAGS= -Wall 
  6.  
  7. usdebt: $(OBJECTS)
  8.     cc $(OBJECTS) -o  usdebt
  9.